home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / RONOT / MAKE.BAT next >
Encoding:
DOS Batch File  |  1991-12-18  |  1009 b   |  42 lines

  1. @echo off
  2. if not "%1." == "clean." goto check_tidy
  3.     del *.h
  4.     del *.o
  5.     del *.c
  6.     del *.a
  7.     del %isode_orig%\ronot\ronot_tables.*
  8.     del %isode_orig%\ronot\ronot-types.*
  9.     del %isode_orig%\ronot\*.ph
  10.     goto end
  11. :check_tidy
  12. if not "%1." == "tidy." goto check_null
  13.     del *.h
  14.     del *.o
  15.     goto end
  16. :check_null
  17. if not "%1." == "." goto bad_param
  18.     set dir=ronot
  19.     if exist %isode_orig%\ronot\ronot_tables.c goto miss1
  20.         cd %isode_orig%\ronot
  21.         %isode%\pepsy\pepsy -A -f -h -m ronot.py
  22.         cd %isode%\ronot
  23. :miss1
  24.     set defines=5
  25.     call %isode%\utils\h ronot-types
  26.     call %isode%\utils\cc ronot_tables
  27.     call %isode%\utils\cc ronotabort
  28.     call %isode%\utils\cc bind1 ronotbind1
  29.     call %isode%\utils\cc bind2 ronotbind2
  30.     call %isode%\utils\cc ronotlose
  31.     call %isode%\utils\cc unbind1 ronotunbind1
  32.     call %isode%\utils\cc unbind2 ronotunbind2
  33.     set defines=0
  34.     ar r temp.a @ronot.lnk >nul:
  35.     copy temp.a libronot.a >nul:
  36.     ar rs libronot.a
  37.     del temp.a
  38.     goto end
  39. :bad_param
  40.     echo unknown option %1
  41. :end
  42.